home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / flute.zip / SAMP_ACT.CPP / SAMP_ACT.H < prev    next >
C/C++ Source or Header  |  1995-04-05  |  884b  |  39 lines

  1. // samp_act.h : main header file for the SAMP_ACT application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.     #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"       // main symbols
  9.  
  10. extern UINT    near uActListMsg;        // WINDACTS
  11.  
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CSamp_actApp:
  14. // See samp_act.cpp for the implementation of this class
  15. //
  16.  
  17. class CSamp_actApp : public CWinApp
  18. {
  19. public:
  20.     CSamp_actApp();
  21.  
  22. // Overrides
  23.     virtual BOOL InitInstance();
  24.  
  25. // Implementation
  26.  
  27.     //{{AFX_MSG(CSamp_actApp)
  28.     afx_msg void OnAppAbout();
  29.         // NOTE - the ClassWizard will add and remove member functions here.
  30.         //    DO NOT EDIT what you see in these blocks of generated code !
  31.     //}}AFX_MSG
  32.     DECLARE_MESSAGE_MAP()
  33.     
  34.  
  35. };
  36.  
  37.  
  38. /////////////////////////////////////////////////////////////////////////////
  39.